home *** CD-ROM | disk | FTP | other *** search
- // DISKETTE::DISKETTE - Diskette Service Class Constructor
-
- #include "diskette.hpp"
- #include <iostream.h>
-
- int main()
- {
- Diskette drive_a(0);
-
- cout << "\nPTEST_01 - Diskette Service Class Constructor\n\n";
-
- if (drive_a.obj_status() == TRUE)
- cout << "Drive A successfully opened\n";
- else
- cout << "Drive A could not be opened\n";
-
- return (0);
- }
-